home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / core / SoundAsset.as < prev    next >
Encoding:
Text File  |  2010-05-14  |  313 b   |  18 lines

  1. package mx.core
  2. {
  3.    import flash.media.Sound;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class SoundAsset extends Sound implements IFlexAsset
  8.    {
  9.       mx_internal static const VERSION:String = "2.0.1.0";
  10.       
  11.       public function SoundAsset()
  12.       {
  13.          super();
  14.       }
  15.    }
  16. }
  17.  
  18.